home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / CFMExamples / ModApp / ModuleSources / Koch.r < prev    next >
Encoding:
Text File  |  1998-12-03  |  801 b   |  39 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Koch.r
  3.  
  4.     Contains:    Tool menu resources.
  5.  
  6.     Written by:    Richard Clark
  7.  
  8.     Copyright:    © 1993-1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.             8/15/94        BLS        updated to CFM-68K runtime
  13.  
  14. */
  15.  
  16.  
  17. #include "Types.r"
  18.  
  19. resource 'MENU' (2001, "Koch", preload) {
  20.     2001,
  21.     textMenuProc,
  22.     0x7FFFFFFF,
  23.     enabled,
  24.     "Koch",
  25.     {    
  26.         "1 snowflake", noIcon, "1", noMark, plain,
  27.         "2 snowflakes", noIcon, "2", noMark, plain,
  28.         "3 snowflakes", noIcon, "3", check, plain,
  29.         "4 snowflakes", noIcon, "4", check, plain,
  30.         "-", noIcon, noKey, noMark, plain,
  31.         "Low detail", noIcon, "L", noMark, plain,
  32.         "Medium detail", noIcon, "M", noMark, plain,
  33.         "High detail", noIcon, "H", check, plain,
  34.         "-", noIcon, noKey, noMark, plain,
  35.         "Rotate colors", noIcon, "R", check, plain
  36.     }
  37. };
  38.  
  39.